chore: bump version references to v1.1.0#6
Conversation
Signed-off-by: Krishan Kant Sharma <krishansharma0327@gmail.com>
- Homepage terminal animation: flaglint v1.0.0 → v1.1.0 - json-output.md baseline example: flaglintVersion 1.0.0 → 1.1.0 Signed-off-by: Krishan Kant Sharma <krishansharma0327@gmail.com>
Deploying flaglint with
|
| Latest commit: |
ab29241
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a8ae618f.flaglint.pages.dev |
| Branch Preview URL: | https://chore-bump-version-1-1-0.flaglint.pages.dev |
📝 WalkthroughWalkthroughUpdates the displayed FlagLint version from 1.0.0 to 1.1.0 in three locations: a guide's verification badge, a JSON baseline example in reference documentation, and the homepage hero terminal demo. ChangesVersion String Update
Estimated code review effort: 1 (Trivial) | ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@src/pages/index.astro`:
- Line 909: The hero terminal label is still hardcoded with a fixed version
string instead of using the shared package-derived value. Update the
`index.astro` template where the `term-version` span is rendered to use the
existing `version` variable so the displayed app version stays in sync with
`package.json` and the rest of the page.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro Plus
Run ID: 25f195d5-9a9a-41f2-ae43-ea47261b1104
📒 Files selected for processing (3)
src/content/docs/docs/guides/launchdarkly-to-openfeature-nodejs.mdsrc/content/docs/docs/reference/json-output.mdsrc/pages/index.astro
| <span class="dot green"></span> | ||
| </div> | ||
| <span class="term-version">flaglint v1.0.0</span> | ||
| <span class="term-version">flaglint v1.1.0</span> |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Use the shared version value here.
This header still hardcodes v1.1.0 even though the file already derives version from package.json. Wiring the terminal label to version keeps the hero demo in sync and avoids the next drift.
♻️ Proposed fix
- <span class="term-version">flaglint v1.1.0</span>
+ <span class="term-version">flaglint v{version}</span>📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| <span class="term-version">flaglint v1.1.0</span> | |
| <span class="term-version">flaglint v{version}</span> |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@src/pages/index.astro` at line 909, The hero terminal label is still
hardcoded with a fixed version string instead of using the shared
package-derived value. Update the `index.astro` template where the
`term-version` span is rendered to use the existing `version` variable so the
displayed app version stays in sync with `package.json` and the rest of the
page.
Summary
flaglint v1.0.0→flaglint v1.1.0flaglintVersion: "1.0.0"→"1.1.0"Test plan
flaglint v1.1.0Summary by CodeRabbit